You are here:
Symbol Reference >
Dew Namespace
>
Dew.Math Namespace
>
Classes
>
clMatrix Structure
>
clMatrix Methods
>
Rem Method
>
clMatrix.Rem Method ([In] TOpenCLMtxVec, [In] TOpenCLMtxVec)
Dew Math for .NET
Example
clMatrix.Rem Method ([In] TOpenCLMtxVec, [In] TOpenCLMtxVec)
var a,b,c:
clMatrix
; begin a.CopyFromArray(2,2,TSingleArray.Create(0,1,10,-1,-10));
// a = [0, 1, 10, -1];
b.CopyFromArray(2,2,TSingleArray.Create(0,1,PI,-1,-PI));
// b = [0, 1, PI, -1];
c.Rem(a,b);
// c = [0, 0, 0.5752, 0]
end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
Contents
|
Index
|
Home